home *** CD-ROM | disk | FTP | other *** search
/ Workplace Effectiveness: Dealing with Change / Workplace Effectiveness: Dealing with Change.iso / pc / Assess.Dxr / Internal_351_personal resources code.ls < prev    next >
Encoding:
Text File  |  1998-04-24  |  4.6 KB  |  159 lines

  1. global gMasterData, gSliderScores, gViewSet
  2.  
  3. on goPRintro
  4.   go("PRintro")
  5.   setUserArea(gMasterData, #resources1)
  6. end
  7.  
  8. on audioPR
  9.   goNarrator(gMasterData, "18")
  10. end
  11.  
  12. on goPersonal
  13.   global gSliderScores, gViewSet
  14.   go("sliders")
  15.   goNarrator(gMasterData, "19")
  16.   setUserArea(gMasterData, #resources2)
  17.   set gViewSet to 1
  18.   if voidp(gSliderScores) then
  19.     set gSliderScores to [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]
  20.   else
  21.     setSliders()
  22.   end if
  23. end
  24.  
  25. on clearSliders
  26.   setPuppetState([5, 16], #c, 0)
  27. end
  28.  
  29. on goBackInPR
  30.   go(label("sliders") + 1)
  31.   set vTitleSprite to 5
  32.   set vArtSprite to 6
  33.   setPuppetState([vTitleSprite, vArtSprite], #n, 1)
  34.   set the member of sprite vArtSprite to member "resources 2"
  35.   set the loc of sprite vTitleSprite to point(320, 240)
  36.   setSliders()
  37.   setUserArea(gMasterData, #resources2)
  38. end
  39.  
  40. on moveSlider thisSprite
  41.   set vMinHz to 404
  42.   set vMaxHz to 568
  43.   set vVertPos to the locV of sprite thisSprite
  44.   puppetSprite(thisSprite, 1)
  45.   set vNewLocH to vMinHz
  46.   repeat while the mouseDown
  47.     set vPlotLoc to the mouseH
  48.     case 1 of
  49.       (vPlotLoc < vMinHz):
  50.         set the loc of sprite thisSprite to point(vMinHz, vVertPos)
  51.         set vNewLocH to vMinHz
  52.       (vPlotLoc > vMaxHz):
  53.         set the loc of sprite thisSprite to point(vMaxHz, vVertPos)
  54.         set vNewLocH to vMaxHz
  55.       otherwise:
  56.         set the loc of sprite thisSprite to point(the mouseH, vVertPos)
  57.         set vNewLocH to vPlotLoc
  58.     end case
  59.     updateStage()
  60.   end repeat
  61.   puppetSound("quickclick")
  62.   set vDivDistance to 164.0 / 9
  63.   set vDivNumber to integer(1.0 * (vNewLocH - 404) / vDivDistance)
  64.   set snapPointH to integer(vDivNumber * vDivDistance) + 404
  65.   set the loc of sprite thisSprite to point(snapPointH, vVertPos)
  66.   scoreSlider(thisSprite, vDivNumber)
  67. end
  68.  
  69. on scoreSlider thisSprite, userChoice
  70.   setAt(getAt(gSliderScores, gViewSet), thisSprite - 6, userChoice + 1)
  71. end
  72.  
  73. on switchSet
  74.   repeat with thisOne = 1 to 10
  75.     if getAt(getAt(gSliderScores, gViewSet), thisOne) = 0 then
  76.       alert("Please select a score for each of the personal resources before proceeding.")
  77.       exit
  78.     end if
  79.   end repeat
  80.   set vTitleSprite to 5
  81.   set vArtSprite to 6
  82.   setPuppetState([vTitleSprite, vArtSprite], #n, 1)
  83.   case gViewSet of
  84.     1:
  85.       set gViewSet to 2
  86.       set the member of sprite vArtSprite to member "resources 2"
  87.       set the loc of sprite vTitleSprite to point(320, 240)
  88.     2:
  89.       set gViewSet to 1
  90.       set the member of sprite vArtSprite to member "resources 1"
  91.       set the loc of sprite vTitleSprite to point(-2222, -2222)
  92.   end case
  93.   setSliders()
  94. end
  95.  
  96. on setSliders
  97.   set vDivDistance to 164.0 / 9
  98.   repeat with thisOne = 1 to 10
  99.     set thisSprite to thisOne + 6
  100.     set thisAnswer to getAt(getAt(gSliderScores, gViewSet), thisOne)
  101.     set vVertPos to the locV of sprite thisSprite
  102.     if thisAnswer = 0 then
  103.       puppetSprite(thisSprite, 0)
  104.       next repeat
  105.     end if
  106.     puppetSprite(thisSprite, 1)
  107.     set snapPointH to integer((thisAnswer - 1) * vDivDistance) + 404
  108.     set the loc of sprite thisSprite to point(snapPointH, vVertPos)
  109.   end repeat
  110.   updateStage()
  111. end
  112.  
  113. on slidersDone
  114.   global checkMarks1
  115.   repeat with thisOne = 1 to 10
  116.     if getAt(getAt(gSliderScores, gViewSet), thisOne) = 0 then
  117.       alert("Please select a score for each of the personal resources before proceeding.")
  118.       exit
  119.     end if
  120.   end repeat
  121.   if getaProp(checkMarks1, #resources) = 0 then
  122.     setaProp(checkMarks1, #resources, 1)
  123.   end if
  124.   clearSliders()
  125.   repeat with xField in ["PR results", "PR rankings"]
  126.     set the text of member xField to " "
  127.     set the textFont of member xField to "Palatino"
  128.     set the textSize of member xField to 12
  129.     set the textHeight of member xField to 14
  130.   end repeat
  131.   go("PRresult")
  132.   scoresToText()
  133.   goNarrator(gMasterData, "20")
  134.   setUserArea(gMasterData, #resources3)
  135. end
  136.  
  137. on scoresToText
  138.   set vResultList to []
  139.   repeat with vSubList = 1 to count(gSliderScores)
  140.     repeat with X in getAt(gSliderScores, vSubList)
  141.       add(vResultList, X)
  142.     end repeat
  143.   end repeat
  144.   set vResultString to EMPTY
  145.   set vResultRanks to EMPTY
  146.   set vAnswerFind to 10
  147.   repeat while vAnswerFind > 0
  148.     repeat with vListPos = 1 to count(vResultList)
  149.       if getAt(vResultList, vListPos) = vAnswerFind then
  150.         put line vListPos of the text of member "PR categories" & RETURN after vResultString
  151.         put string(getAt(vResultList, vListPos)) & RETURN after vResultRanks
  152.       end if
  153.     end repeat
  154.     set vAnswerFind to vAnswerFind - 1
  155.   end repeat
  156.   set the text of member "PR results" to vResultString
  157.   set the text of member "PR rankings" to vResultRanks
  158. end
  159.